        :root {
            --primary-blue: #0d6efd;
            --secondary-blue: #0b5ed7;
            --dark-blue: #084298;
            --light-blue: #e7f1ff;
            --success-green: #198754;
            --warning-orange: #ffc107;
            --danger-red: #dc3545;
        }
        
        body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 70px;
            overflow-x: hidden;
        }
        
        /* ========== ENHANCED RESPONSIVE NAVBAR ========== */
        .main-navbar {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 0.5rem 0;
        }
        
        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        .navbar-left {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand-section {
            display: flex;
            align-items: center;
        }
        
        .brand-logo {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
        }
        
        .brand-text h5 {
            margin: 0;
            font-weight: 700;
            color: var(--dark-blue);
            font-size: 1.1rem;
        }
        
        .brand-text span {
            font-size: 0.75rem;
            color: #6c757d;
        }
        
        .nav-search-container {
            flex: 1;
            max-width: 500px;
            margin: 0 1.5rem;
        }
        
        .nav-search-wrapper {
            display: flex;
            width: 100%;
        }
        
        .nav-search {
            border: 1.5px solid #e2e8f0;
            border-radius: 8px 0 0 8px;
            padding: 0.6rem 1rem;
            width: 100%;
            transition: all 0.3s ease;
            background: #f8fafc;
        }
        
        .nav-search:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
            background: white;
        }
        
        .nav-search-btn {
            background: var(--primary-blue);
            border: none;
            border-radius: 0 8px 8px 0;
            color: white;
            padding: 0.6rem 1.5rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .nav-search-btn:hover {
            background: var(--secondary-blue);
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .nav-icon-btn {
            position: relative;
            background: none;
            border: none;
            color: #64748b;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-icon-btn:hover {
            background: #f1f5f9;
            color: var(--primary-blue);
        }
        
        .nav-icon-text {
            margin-left: 0.5rem;
            font-size: 0.85rem;
        }
        
        .notification-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: var(--danger-red);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }
        
        .user-dropdown {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            background: none;
        }
        
        .user-dropdown:hover {
            background: #f1f5f9;
        }
        
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .user-info {
            text-align: left;
        }
        
        .user-name {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.9rem;
            margin: 0;
            white-space: nowrap;
        }
        
        .user-role {
            font-size: 0.75rem;
            color: #64748b;
            margin: 0;
            white-space: nowrap;
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark-blue);
            font-size: 1.5rem;
            padding: 0.5rem;
            margin-right: 0.5rem;
        }
        
        /* Mobile Search Toggle */
        .mobile-search-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark-blue);
            font-size: 1.25rem;
            padding: 0.5rem;
        }
        
        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 70px;
            left: -300px;
            width: 280px;
            height: calc(100vh - 70px);
            background: white;
            box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease;
            z-index: 1020;
            overflow-y: auto;
            padding: 1rem 0;
        }
        
        .mobile-sidebar.active {
            left: 0;
        }
        
        .mobile-sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-sidebar-menu li {
            padding: 0;
        }
        
        .mobile-sidebar-menu a {
            display: flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            color: #475569;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .mobile-sidebar-menu a:hover,
        .mobile-sidebar-menu a.active {
            background: #f1f5f9;
            color: var(--primary-blue);
            border-left-color: var(--primary-blue);
        }
        
        .mobile-sidebar-menu i {
            width: 24px;
            margin-right: 12px;
            font-size: 1.1rem;
        }
        
        .sidebar-divider {
            margin: 1rem 1.5rem;
            border-top: 1px solid #e2e8f0;
        }
        
        /* Overlay for mobile */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1015;
        }
        
        .sidebar-overlay.active {
            display: block;
        }
        
        /* Mobile Search Container */
        .mobile-search-container {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1010;
        }
        
        .mobile-search-container.active {
            display: block;
        }
        
        /* Media Queries for Responsive Navbar */
        @media (max-width: 1199px) {
            .nav-search-container {
                max-width: 400px;
            }
        }
        
        @media (max-width: 991px) {
            .nav-search-container {
                display: none;
            }
            
            .mobile-search-btn {
                display: block;
            }
            
            .nav-icon-text {
                display: none;
            }
            
            .user-info {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-actions {
                gap: 0.5rem;
            }
            
            body {
                padding-top: 65px;
            }
            
            .mobile-sidebar,
            .sidebar-overlay {
                top: 65px;
                height: calc(100vh - 65px);
            }
            
            .mobile-search-container {
                top: 65px;
            }
        }
        
        /* Hide brand logo on small screens */
        @media (max-width: 991px) {
            .brand-logo {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .brand-text h5 {
                font-size: 1rem;
            }
            
            .brand-text span {
                font-size: 0.7rem;
            }
            
            .brand-logo {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .user-avatar {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }
            
            .nav-icon-btn {
                padding: 0.4rem;
            }
        }
        
        @media (max-width: 576px) {
            .brand-text h5 {
                font-size: 0.9rem;
            }
            
            .brand-text span {
                display: none;
            }
            
            .brand-logo {
                width: 52px;
                height: 52px;
                margin-right: 8px;
            }
            
            .mobile-menu-btn {
                font-size: 1.3rem;
                padding: 0.4rem;
            }
            
            .mobile-search-btn {
                font-size: 1.1rem;
                padding: 0.4rem;
            }
            
            body {
                padding-top: 60px;
            }
            
            .mobile-sidebar,
            .sidebar-overlay {
                top: 60px;
                height: calc(100vh - 60px);
            }
            
            .mobile-search-container {
                top: 60px;
            }
        }
        
        /* Prevent body scroll when mobile menu is open */
        body.menu-open {
            overflow: hidden;
        }
        
        body.search-open {
            overflow: hidden;
        }
        
        /* ========== DASHBOARD STYLES ========== */
        
        /* Search Tabs */
        .search-tabs-wrapper {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            overflow: hidden;
        }
        
        .nav-tabs-custom {
            background: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            padding: 0.5rem;
        }
        
        .nav-tabs-custom .nav-link {
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            color: #6c757d;
            transition: all 0.3s ease;
            margin: 0 0.25rem;
        }
        
        .nav-tabs-custom .nav-link:hover {
            color: var(--primary-blue);
            background: #e9ecef;
        }
        
        .nav-tabs-custom .nav-link.active {
            background: linear-gradient(135deg, var(--primary-blue), #0a58ca);
            color: white;
            box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
        }
        
        .tab-content-custom {
            padding: 2rem;
        }
        
        .search-input-custom {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 0.75rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .search-input-custom:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
        }
        
        .search-btn-custom {
            background: linear-gradient(135deg, var(--primary-blue), #0a58ca);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        
        .search-btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
        }
        
        /* Results Table Container */
        .results-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            margin-top: 2rem;
            display: none;
        }
        
        .results-container.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Results Table */
        .results-table {
            width: 100%;
            margin-top: 1.5rem;
        }
        
        .results-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #495057;
            padding: 1rem;
            border-bottom: 2px solid #dee2e6;
        }
        
        .results-table td {
            padding: 1rem;
            border-bottom: 1px solid #dee2e6;
            vertical-align: middle;
        }
        
        .results-table tbody tr:hover {
            background-color: #f8f9fa;
        }
        
        /* Status badges */
        .status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .status-active {
            background-color: #d1e7dd;
            color: #0f5132;
        }
        
        .status-pending {
            background-color: #fff3cd;
            color: #664d03;
        }
        
        .status-retired {
            background-color: #e2e3e5;
            color: #495057;
        }
        
        .status-archived {
            background-color: #f8d7da;
            color: #842029;
        }
        
        /* Action buttons */
        .action-btn {
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            border: none;
            background: none;
            transition: all 0.3s ease;
        }
        
        .action-btn:hover {
            background-color: #f8f9fa;
        }
        
        .action-btn-view {
            color: #0d6efd;
        }
        
        .action-btn-edit {
            color: #198754;
        }
        
        .action-btn-delete {
            color: #dc3545;
        }
        
        /* Loading overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            display: none;
        }
        
        .loading-overlay.show {
            display: flex;
        }
        
        /* Pagination */
        .pagination-container {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
        }
        
        /* No results message */
        .no-results {
            text-align: center;
            padding: 3rem;
            color: #6c757d;
        }
        
        .no-results i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        /* Statistics Cards */
        .stat-card {
            border-radius: 10px;
            padding: 1.5rem;
            color: white;
            margin-bottom: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .stat-card.total {
            background: linear-gradient(135deg, var(--primary-blue), #0a58ca);
        }
        
        .stat-card.active {
            background: linear-gradient(135deg, var(--success-green), #157347);
        }
        
        .stat-card.pending {
            background: linear-gradient(135deg, var(--warning-orange), #e0a800);
        }
        
        .stat-card.archived {
            background: linear-gradient(135deg, #6c757d, #495057);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .tab-content-custom {
                padding: 1rem;
            }
            
            .results-table {
                display: block;
                overflow-x: auto;
            }
            
            .nav-tabs-custom .nav-link {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
            
            .search-input-custom, 
            .search-btn-custom {
                margin-bottom: 1rem;
            }
        }

        .action-btn-assign {
            background-color: #6f42c1;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            margin: 0 2px;
            transition: all 0.3s;
        }

        .action-btn-assign:hover {
            background-color: #5a32a3;
            transform: translateY(-2px);
        }

        .status-occupied {
            background-color: #dc3545;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            display: inline-block;
        }

        .status-active {
            background-color: #28a745;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            display: inline-block;
        }

        .status-available {
            background-color: #17a2b8;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            display: inline-block;
        }
        
        /* Media Queries for Responsive Navbar */
        @media (min-width: 880px) {
            #mobileSidebar {
                display: block;
            }
        }

        @media (max-width: 576px) {
            #searchTabs {
                flex-wrap: nowrap;
            }
            #searchTabs .nav-item {
                width: 50%;
                text-align: center;
            }
            #searchTabs .nav-link {
                width: 100%;
                font-size: 12px;
                padding: 8px 4px;
            }
        }



          /* Footer Styles */
    .main-footer {
        background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
        color: #ecf0f1;
        padding-top: 60px;
        margin-top: 80px;
        position: relative;
    }

    .main-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    }

    /* Brand Section */
    .footer-brand {
        margin-bottom: 20px;
    }

    .brand-logo-footer {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3498db, #2ecc71);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .brand-logo-footer i {
        font-size: 28px;
        color: white;
    }

    .footer-brand h4 {
        color: white;
        font-size: 1.4rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .footer-description {
        color: #bdc3c7;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    /* Social Links */
    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ecf0f1;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: #3498db;
        transform: translateY(-3px);
    }

    .social-link i {
        font-size: 1.1rem;
    }

    /* Footer Sections */
    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section h5 {
        color: white;
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #3498db;
        position: relative;
    }

    .footer-section h5::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 40px;
        height: 2px;
        background: #2ecc71;
    }

    /* Footer Links */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        color: #3498db;
        transform: translateX(5px);
    }

    .footer-links i {
        font-size: 0.8rem;
        color: #3498db;
    }

    /* Contact Info */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    .contact-item i {
        color: #3498db;
        font-size: 1.2rem;
        margin-top: 3px;
    }

    .contact-item div {
        flex: 1;
    }

    .contact-item p {
        margin: 0;
        color: #bdc3c7;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-item a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-item a:hover {
        color: #3498db;
    }

    /* Statistics Bar */
    .footer-stats {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 25px;
        margin: 40px 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        transform: translateY(-2px);
    }

    .stat-item i {
        font-size: 2.5rem;
        color: #3498db;
        background: rgba(52, 152, 219, 0.1);
        width: 70px;
        height: 70px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-item div {
        flex: 1;
    }

    .stat-item h6 {
        color: #bdc3c7;
        font-size: 0.9rem;
        margin-bottom: 5px;
        font-weight: 400;
    }

    .stat-item p {
        color: white;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        line-height: 1;
    }

    /* Footer Bottom */
    .footer-bottom {
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
    }

    .copyright {
        color: #95a5a6;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-legal a {
        color: #95a5a6;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-legal a:hover {
        color: #3498db;
    }

    /* Emergency Contact */
    #emergencyContact {
        color: #e74c3c !important;
        font-weight: 600;
    }

    #emergencyContact:hover {
        color: #c0392b !important;
    }

    .emergency-contacts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .emergency-item {
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 4px solid #e74c3c;
    }

    .emergency-item h6 {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .emergency-item p {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .emergency-item a {
        color: #2c3e50;
        text-decoration: none;
    }

    .emergency-item a:hover {
        color: #3498db;
    }

    .emergency-item small {
        color: #7f8c8d;
        font-size: 0.85rem;
    }

    .emergency-note {
        padding: 15px;
        background: #e8f4fc;
        border-radius: 8px;
        border-left: 4px solid #3498db;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: #3498db;
        color: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: #2980b9;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    }

    .back-to-top i {
        font-size: 1.2rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .main-footer {
            padding-top: 40px;
        }
        
        .footer-stats .stat-item {
            padding: 10px;
        }
        
        .stat-item i {
            width: 50px;
            height: 50px;
            font-size: 1.8rem;
        }
        
        .stat-item p {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .footer-legal {
            justify-content: flex-start;
            margin-top: 15px;
        }
        
        .footer-bottom .row {
            text-align: center;
        }
        
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }
        
        .stat-item {
            text-align: center;
            flex-direction: column;
            gap: 10px;
        }
        
        .stat-item i {
            width: 60px;
            height: 60px;
        }
        
        .footer-section h5 {
            font-size: 1rem;
        }
        
        .footer-links a {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .main-footer {
            padding-top: 30px;
        }
        
        .brand-logo-footer {
            width: 50px;
            height: 50px;
        }
        
        .brand-logo-footer i {
            font-size: 24px;
        }
        
        .footer-brand h4 {
            font-size: 1.2rem;
        }
        
        .social-links {
            justify-content: center;
        }
        
        .footer-stats {
            padding: 15px;
        }
    }




     /* Mobile Results Cards */
    .results-cards {
        display: grid;
        gap: 1rem;
    }
    
    .org-card {
        background: white;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-left: 4px solid #3498db;
    }
    
    .org-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.75rem;
    }
    
    .org-name {
        font-weight: bold;
        color: #2c3e50;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .org-id {
        color: #7f8c8d;
        font-size: 0.9rem;
    }
    
    .org-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .info-item {
        display: flex;
        flex-direction: column;
    }
    
    .info-label {
        color: #7f8c8d;
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .info-value {
        font-weight: 500;
        color: #2c3e50;
    }
    
    .org-actions {
        display: flex;
        justify-content: space-between;
        margin-top: 1rem;
        padding-top: 0.75rem;
        border-top: 1px solid #eee;
    }
    
    .card-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    /* Mobile Action Bar */
    .mobile-action-bar {
        background: #f8f9fa;
        padding: 0.75rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
    /* Printable Template Styles */
    #printableTemplate {
        font-family: 'Arial', sans-serif;
        padding: 20px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .print-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #333;
    }
    
    .print-header h3 {
        color: #2c3e50;
        margin-bottom: 5px;
    }
    
    .print-header h4 {
        color: #3498db;
        margin-bottom: 5px;
    }
    
    .print-header h5 {
        color: #7f8c8d;
        margin-bottom: 10px;
    }
    
    .print-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
    }
    
    .print-table th {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 10px;
        text-align: left;
        font-weight: bold;
        color: #2c3e50;
    }
    
    .print-table td {
        border: 1px solid #dee2e6;
        padding: 8px 10px;
    }
    
    .print-footer {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #7f8c8d;
        font-size: 0.9rem;
    }
    
    /* Responsive adjustments */
    @media print {
        body * {
            visibility: hidden;
        }
        
        #printableTemplate,
        #printableTemplate * {
            visibility: visible;
        }
        
        #printableTemplate {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            margin: 0;
            padding: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .org-info-grid {
            grid-template-columns: 1fr;
        }
        
        .org-actions {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .card-btn {
            width: 100%;
            justify-content: center;
        }
    }
    
    /* Status Badges for Cards */
    .status-badge-sm {
        padding: 0.2rem 0.5rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .status-occupied {
        background-color: #e8f5e8;
        color: #27ae60;
        border: 1px solid #27ae60;
    }
    
    .status-available {
        background-color: #e3f2fd;
        color: #1976d2;
        border: 1px solid #1976d2;
    }